/* Resetando os estilos básicos */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Urbanist', sans-serif;
    scroll-behavior: smooth;
    height: 100%;
    font-family: 'Urbanist', sans-serif;
}


/* Esconde o submenu por padrão */
.nav-item.dropdown .dropdown-menu {
    display: none;
}

/* Exibe o submenu quando o mouse passa sobre o item "Sobre" */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    position: absolute; /* Garante que o submenu não afete o layout */
    background-color: #fff; /* Cor de fundo do submenu */
    border: 1px solid #ddd; /* Borda do submenu */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra para o submenu */
}

/* Estilo para os itens do submenu */
.nav-item.dropdown .dropdown-menu a {
    padding: 10px 20px; /* Espaçamento interno */
    color: #333; /* Cor padrão dos itens do submenu */
    text-decoration: none; /* Remove underline */
}

/* Estilo de hover para os itens do submenu (apenas texto fica vermelho) */
.nav-item.dropdown .dropdown-menu a:hover {
    color: red; /* Cor do texto quando passar o mouse */
    background-color: transparent; /* Remove a cor de fundo */
}

/* Navbar fixa no topo da página */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-image: linear-gradient(to bottom, #000000a9, transparent);
  z-index: 1000;
  padding: 10px 20px;
}

/* Tamanho do logo */
.navbar-brand img {
  height: 30px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Efeito de hover no logo */
.navbar-brand img:hover {
  opacity: 0.5;
  transform: scale(1.1);
}

/* Estilo de navegação */
.navbar-nav {
  display: flex;
  list-style-type: none;
  flex-grow: 1;
  justify-content: center;
}

/* Estilo para os links */
.navbar-nav .nav-item {
  margin-left: 20px;
  margin-right: 20px;
}

.navbar-nav .nav-link {
  color: white;
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
}

.navbar-nav .nav-link:hover {
  color: #ff3838;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ff3838;
  transform: scaleX(0);
  transition: transform 0.3s ease-out;
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.social-icons {
  display: flex;
  justify-content: center; /* ou flex-start / flex-end */
  gap: 3px;


}

.social-icon {
  font-size: 20px;
  color: white;
  background-color: transparent;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
  
}

.social-icon:hover {
  background-color: red;
}

.social-icon i {
  color: white;
  font-size: 14px; /* diminua esse valor para reduzir o ícone */
}


#langToggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding-left: 10px;
  padding-bottom: 5px;

}

.lang-icon{
  margin-bottom: 5px;
}


/* Estilo para o botão de hambúrguer */
.navbar-toggler {
  position: absolute;     /* ou fixed, se quiser que fique sempre visível */
  right: 10px;            /* Alinhado à direita */
  top: 25px;              /* Aumente esse valor para descer mais */
  border: none;
  background-color: transparent;
  padding: 5px;
  width: 70px;
  z-index: 999;
}


/* Estilo das barras do hambúrguer */
.navbar-toggler-icon {
  background-color: red;
  padding-top: 20px;
  width: 50vh;
  height: 1px;
  border-radius: 5px;
  display: block;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  background-color: red;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  position: absolute;
  left: 0;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}


/* Responsividade - Navbar no celular */
@media (max-width: 768px) {
  /* Navbar collapsible */
  .navbar-nav {
      flex-direction: column;
      align-items: center;
      margin-top: 10px;
  }

  /* Ajustar os itens do menu */
  .navbar-nav .nav-item {
      margin-left: 0;
      margin-right: 0;
      padding: 10px 0;
  }

  /* Esconder os ícones sociais em telas pequenas */
  .social-icons {
      display: none;
  }
}


.carousel-item {
    height: 100vh; /* Garante que cada slide tenha altura total da tela */
    position: relative;
}

.carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantém proporção sem distorcer, preenchendo o slide */
}



/* Seções */
/* Resetando os estilos básicos */.carousel-item {
  height: 70vh; /* Garante que cada slide tenha altura total da tela */
  position: relative;
}

.carousel-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Mantém proporção sem distorcer, preenchendo o slide */
}

.carousel-caption {
  position: absolute !important;
  left: 20px !important;
  bottom: -38px !important; /* bem colado na parte de baixo */
  right: auto !important;
  top: auto !important;

  max-width: 90%;
}

.carousel-caption h3 {
  font-size: 90px;
  font-weight: bold;
  color: #fff;
  margin: 0;
  text-shadow: 1px 1px 1px #0000003a;
}



.custom-control {
  display: inline-block;
  width: auto !important;
  padding: 0 !important;
  background: none !important;
}

.custom-control svg {
  pointer-events: all;
  cursor: pointer;
}








.bloco-ficha {
  display: grid;
  grid-template-columns: 20% 60% 20%; /* proporção exata */
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 50px 4%;
  max-width: 1500px;
  margin: 0 auto;
  background: #fff;
  font-family: "Urbanist", sans-serif;
  box-sizing: border-box;
}

/* ------------------ COLUNA ESQUERDA (Imagem) ------------------ */
.col-esquerda {
  display: flex;
  justify-content: center;
  align-items: center;
}
.col-esquerda img {
  width: 100%;
  max-width: 100%;        /* usa 100% da coluna de 20% */
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.col-esquerda img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* ------------------ COLUNA CENTRAL (Texto) ------------------ */
.col-centro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 40px;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}
.col-centro .titulo {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}
.col-centro .descricao {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.9;
  text-align: justify;
  text-justify: inter-word;
  max-width: 90%;
}

/* ------------------ COLUNA DIREITA (Ficha Técnica) ------------------ */
.col-direita {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding-left: 20px;
}
.titulo-ficha {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #111;
  text-align: left;
}
.lista-ficha {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lista-ficha li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 1.00rem;
  color: #222;
}
.lista-ficha .icone {
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.lista-ficha .icone:hover {
  opacity: 1;
}

/* ------------------ RESPONSIVIDADE ------------------ */
@media (max-width: 1100px) {
  .bloco-ficha {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .col-esquerda img {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 0 auto;
  }
  .col-centro {
    border: none;
    padding: 0 20px;
  }
  .col-direita {
    text-align: center;
    padding-left: 0;
  }
}



















.bloco-texto-imagem {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;

    border-radius: 12px;
  }
  
  .bloco-texto-imagem .conteudo {
    flex: 1;
  }
  
  .bloco-texto-imagem h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #333;
  }
  
  .bloco-texto-imagem p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
  }
  
  .bloco-texto-imagem .imagem img {
    width: 650px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }


  




/* ====== LIGHTBOX ====== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;                 /* abre via JS (block) */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 4vh 4vw;
  cursor: zoom-out;              /* clique fora fecha */
}
.lightbox.open { display: flex; }

.lightbox .lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
  border-radius: 10px;
  cursor: default;
}

/* Botão fechar */
.lightbox .lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 36px;
  line-height: 36px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.15);
  color: #fff;
  cursor: pointer;
}
.lightbox .lb-close:hover { background: rgba(255,255,255,.3); }

/* Loader simples enquanto carrega a original */
.lightbox .lb-loader {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.25);
  border-top-color: #fff;
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg);} }

/* ====== MOSAICO (mantém o seu) ====== */
.gallery { column-count: 4; column-gap: 15px; padding: 20px; }
.gallery-item { display: inline-block; width: 100%; margin-bottom: 15px; border-radius: 10px; overflow: hidden; }
.gallery-item img { width: 100%; height: auto; display: block; border-radius: 10px; }

/* Hover leve na thumb (opcional) */
.gallery-item img { transition: transform .25s ease; }
.gallery-item:hover img { transform: scale(1.02); }

@media (max-width: 1100px) { .gallery { column-count: 3; } }
@media (max-width: 768px)  { .gallery { column-count: 2; } }
@media (max-width: 500px)  { .gallery { column-count: 1; } }










  @media (max-width: 768px) {
    /* Navbar */
    .navbar {
      padding: 10px;
    }
  
    .navbar-nav {
      flex-direction: column;
      align-items: center;
      margin-top: 10px;
    }
  
    .navbar-nav .nav-item {
      padding: 10px 0;
      margin: 0;
    }
  
    .social-icons {
      display: none;
    }
  
    .navbar-toggler {
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 1100;
    }
  
    /* Carousel */
    .carousel-caption h3 {
      font-size: 36px;
    }
  
    /* Ficha técnica */
    .ficha-tecnica {
      flex-direction: column;
      align-items: center;
      gap: 30px;
      padding: 20px;
      font-size: 16px;
    }
  
    .ficha-tecnica h3 {
      margin: 20px 0;
      text-align: center;
      margin-left: 0;
    }
  
    .ficha-tecnica img {
      width: 90%;
    }
  
    /* Bloco texto e imagem */
    .bloco-texto-imagem {
      flex-direction: column;
      text-align: center;
      padding: 20px;
      gap: 20px;
    }
  
    .bloco-texto-imagem .imagem img {
      width: 100%;
    }
  
    /* Botões de filtro */
    .filter-buttons button {
      font-size: 16px;
      margin: 0 10px;
    }
  
    /* Galeria */

  
    /* Vídeo responsivo */
    .video-full {
      padding-bottom: 56.25%;
    }
  
    /* Ajuste geral de container */
    .container-central {
      height: auto;
      padding: 20px;
    }
  }

  

  /* Ajuste para telas menores que 768px (mobile) */
@media (max-width: 768px) {
  #langToggle {
    margin-right: 68px; /* ou use negativo: margin-left: -10px */
padding-bottom: 10px;
  }
}



.titulo-abaixo {
    position: relative;
    left: 20px;
    bottom: 85px;
    max-width: 90%;
    font-size: clamp(40px, 8vw, 90px); /* Responsivo entre 30px e 90px */
    font-weight: bold;
    color: #ffffff;
    z-index: 1;
    line-height: 1.1;

}



@media (max-width: 768px) {
    .titulo-abaixo {
        left: 10px;

    }
}

@media (max-width: 480px) {
    .titulo-abaixo {
        font-size: 40PX;
        left: 5px;
        bottom: 38px;
    }
}

  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

.popup-content {
  background-color: #fff;
  padding: 20px;
  width: 40vw;
  height: 40vh;
  overflow: auto;
  border-radius: 8px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}


  .popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
  }

#popup-img {
  max-height: 50vh;
  max-width: 100%;
  margin: 20px 0;
  object-fit: contain;
  border-radius: 4px;
}

  #carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  #carousel img {
    width: 150px;
    height: 120px;
    object-fit: cover;
    margin: 5px;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: border 0.2s ease-in-out;
  }

  #carousel img:hover {
    border: 2px solid #ff0000;
  }